$( "#target" ).click(function() { alert( "Handler for .click() called." ); });
$( "#other" ).click(function() { $( "#target" ).click(); });
$( "#dataTable tbody tr" ).on( "click", function() { console.log( $( this ).text() ); });